All Questions
2 questions
4votes
1answer
2kviews
How to disassembly multiple functions using Linux utility objdump?
After a program is compiled and the binary file is generated, we can use objdump to disassemble the binary file and extract the assembly code and a lot of information. However, using -j .text with ...
2votes
1answer
2kviews
How can we perform an arithmetic operation on a register using GDB? [closed]
I want to inject a bit-flip fault into a running program. For this purpose, I'm using gdb to insert a breakpoint into the target program and then flipping a single bit in a random-selected register. ...